home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / cmds / gdb-4.5 / ds3100.md / gdb / Makefile < prev    next >
Encoding:
Makefile  |  1992-07-16  |  56.8 KB  |  1,348 lines

  1. # This file was generated automatically by configure.  Do not edit.
  2. host_alias = decstation
  3. host_cpu = mips
  4. host_vendor = dec
  5. host_os = sprite
  6. target_alias = decstation
  7. target_cpu = mips
  8. target_vendor = dec
  9. target_os = ultrix42
  10. target_makefile_frag = ./config/decstation.mt
  11. host_makefile_frag = ./config/decstation.mh
  12. site_makefile_frag = 
  13. links =  xm.h tm.h
  14. VPATH = .
  15. ALL=all.internal
  16. #Copyright (C) 1989, 1990, 1991, 1992 Free Software Foundation, Inc.
  17.  
  18. # This file is part of GDB.
  19.  
  20. # This program is free software; you can redistribute it and/or modify
  21. # it under the terms of the GNU General Public License as published by
  22. # the Free Software Foundation; either version 2 of the License, or
  23. # (at your option) any later version.
  24. # This program is distributed in the hope that it will be useful,
  25. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  26. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  27. # GNU General Public License for more details.
  28. # You should have received a copy of the GNU General Public License
  29. # along with this program; if not, write to the Free Software
  30. # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  31.  
  32. prefix = /usr/local
  33.  
  34. program_prefix = 
  35. exec_prefix = $(prefix)
  36. bindir = $(exec_prefix)/bin
  37. libdir = $(exec_prefix)/lib
  38.  
  39. datadir = $(prefix)/lib
  40. mandir = $(prefix)/man
  41. man1dir = $(mandir)/man1
  42. man2dir = $(mandir)/man2
  43. man3dir = $(mandir)/man3
  44. man4dir = $(mandir)/man4
  45. man5dir = $(mandir)/man5
  46. man6dir = $(mandir)/man6
  47. man7dir = $(mandir)/man7
  48. man8dir = $(mandir)/man8
  49. man9dir = $(mandir)/man9
  50. infodir = $(prefix)/info
  51. includedir = $(prefix)/include
  52. docdir = $(datadir)/doc
  53.  
  54. SHELL = /bin/sh
  55.  
  56. INSTALL = install -c
  57. INSTALL_PROGRAM = $(INSTALL)
  58. INSTALL_DATA = $(INSTALL)
  59.  
  60. AR = ar
  61. AR_FLAGS = qv
  62. RANLIB = ranlib
  63.  
  64. # Flags that describe where you can find the termcap library.
  65. # This can be overridden in the host Makefile fragment file.
  66. TERMCAP = -ltermcap
  67.  
  68. # System V: If you compile gdb with a compiler which uses the coff
  69. # encapsulation feature (this is a function of the compiler used, NOT
  70. # of the m-?.h file selected by config.gdb), you must make sure that
  71. # the GNU nm is the one that is used by munch.
  72.  
  73. # If you are compiling with GCC, make sure that either 1) You use the
  74. # -traditional flag, or 2) You have the fixed include files where GCC
  75. # can reach them.  Otherwise the ioctl calls in inflow.c
  76. # will be incorrectly compiled.  The "fixincludes" script in the gcc
  77. # distribution will fix your include files up.
  78. #CC=cc
  79. #CC=gcc -traditional
  80. GCC=gcc
  81.  
  82. # Directory containing source files.  Don't clean up the spacing,
  83. # this exact string is matched for by the "configure" script.
  84. srcdir = .
  85.  
  86. # It is also possible that you will need to add -I/usr/include/sys to the
  87. # CFLAGS section if your system doesn't have fcntl.h in /usr/include (which 
  88. # is where it should be according to Posix).
  89.  
  90. BISON=bison -y
  91. BISONFLAGS=
  92. YACC=$(BISON) $(BISONFLAGS)
  93. # YACC=yacc
  94. MAKE=make
  95.  
  96. # Documentation (gdb.dvi) needs either GNU m4 or SysV m4; 
  97. # Berkeley/Sun don't have quite enough. 
  98. #M4=/usr/5bin/m4
  99. M4=gm4
  100.  
  101. # where to find texinfo; GDB dist should include a recent one
  102. TEXIDIR=${srcdir}/../texinfo/fsf
  103.  
  104. # where to find makeinfo, preferably one designed for texinfo-2
  105. MAKEINFO=makeinfo
  106.  
  107. # Set this up with gcc if you have gnu ld and the loader will print out
  108. # line numbers for undefinded refs.
  109. #CC-LD=gcc -static
  110. CC-LD=${CC}
  111.  
  112. # Where is the "include" directory?  Traditionally ../include or ./include
  113. INCLUDE_DIR =  ${srcdir}/../include
  114. INCLUDE_DEP = $$(INCLUDE_DIR)
  115.  
  116. # Where is the source dir for the MMALLOC library? Traditionally ../mmalloc
  117. # or ./mmalloc  (When we want the binary library built from it, we use
  118. # ${MMALLOC_DIR}${subdir}.)
  119. # Note that mmalloc can still be used on systems without mmap().
  120. # To use your system malloc, comment out the following defines.
  121. MMALLOC_DIR = ${srcdir}/../mmalloc
  122. MMALLOC_DEP = $$(MMALLOC_DIR)
  123. MMALLOC_LIB = ./../mmalloc${subdir}/libmmalloc.a
  124. # To use your system malloc, uncomment MMALLOC_DISABLE.
  125. #MMALLOC_DISABLE = -DNO_MMALLOC
  126. # To use mmalloc but disable corruption checking, uncomment MMALLOC_CHECK
  127. MMALLOC_CHECK = -DNO_MMALLOC_CHECK
  128. MMALLOC_CFLAGS = ${MMALLOC_CHECK} ${MMALLOC_DISABLE}
  129.  
  130. # Where is the source dir for the BFD library?  Traditionally ../bfd or ./bfd
  131. # (When we want the binary library built from it, we use ${BFD_DIR}${subdir}.)
  132. BFD_DIR =  ${srcdir}/../bfd
  133. BFD_DEP = $$(BFD_DIR)
  134. BFD_LIB = ./../bfd${subdir}/libbfd.a
  135.  
  136. # Where is the source dir for the READLINE library?  Traditionally in .. or .
  137. # (For the binary library built from it, we use ${READLINE_DIR}${subdir}.)
  138. READLINE_DIR = ${srcdir}/../readline
  139. READLINE_DEP = $$(READLINE_DIR)
  140. RL_LIB = ./../readline${subdir}/libreadline.a
  141.  
  142. # All the includes used for CFLAGS and for lint.
  143. # -I. for config files.
  144. # -I${srcdir} possibly for regex.h also.
  145. INCLUDE_CFLAGS = -I. -I${srcdir} -I$(INCLUDE_DIR) -I$(READLINE_DIR) -I${srcdir}/vx-share
  146.  
  147. # {X,T}M_CFLAGS, if defined, has system-dependent CFLAGS.
  148. # CFLAGS for GDB
  149. MINUS_G=-g
  150. GLOBAL_CFLAGS = ${MINUS_G} ${TM_CFLAGS} ${XM_CFLAGS}
  151. #PROFILE_CFLAGS = -pg
  152.  
  153. # CFLAGS is the aggregate of several individual *_CFLAGS macros.
  154. # USER_CFLAGS is specifically reserved for setting from the command line
  155. # when running make.  I.E.  "make USER_CFLAGS=-Wmissing-prototypes".
  156. CFLAGS = ${GLOBAL_CFLAGS} ${PROFILE_CFLAGS} ${MMALLOC_CFLAGS} ${INCLUDE_CFLAGS} ${USER_CFLAGS} -DNO_SIGINTERRUPT -Dputenv=setenv -DHAVE_STRSTR -Dsprite
  157. # None of the things in CFLAGS will do any harm, and on some systems
  158. #  (e.g. SunOS4) it is important to use the M_CFLAGS.
  159. LDFLAGS = $(CFLAGS)
  160.  
  161. # Where is the "-liberty" library, containing getopt and obstack?
  162. LIBIBERTY_DIR = ${srcdir}/../libiberty
  163. LIBIBERTY = ./../libiberty${subdir}/libiberty.a
  164.  
  165. # The config/mh-* file must define REGEX and REGEX1 on USG machines.
  166. # If your sysyem is missing alloca(), or, more likely, it's there but
  167. # it doesn't work, define ALLOCA & ALLOCA1 too.
  168. # If your system is missing putenv(), add putenv.c to XM_ADD_FILES.
  169.  
  170. # Libraries and corresponding dependencies for compiling gdb.
  171. # {X,T}M_CLIBS, defined in *config files, have host- and target-dependent libs.
  172. # TERMCAP comes after readline, since readline depends on it.
  173. CLIBS = ${BFD_LIB}  ${RL_LIB} ${TERMCAP} ${MMALLOC_LIB} ${LIBIBERTY} \
  174.     ${XM_CLIBS} ${TM_CLIBS}
  175. CDEPS = ${XM_CDEPS} ${TM_CDEPS} ${BFD_LIB} ${MMALLOC_LIB} ${LIBIBERTY} \
  176.     ${RL_LIB} ${MMALLOC_LIB}
  177.  
  178. ADD_FILES = ${REGEX} ${ALLOCA} ${XM_ADD_FILES} ${TM_ADD_FILES}
  179. ADD_DEPS = ${REGEX1} ${ALLOCA1} ${XM_ADD_FILES} ${TM_ADD_FILES}
  180.  
  181. VERSION = 4.5
  182. DIST=gdb
  183.  
  184. LINT=/usr/5bin/lint
  185. LINTFLAGS= -I${BFD_DIR}
  186.  
  187. # Host and target-dependent makefile fragments come in here.
  188. ####
  189. # Target: Little-endian MIPS machine such as DECstation.
  190. TDEPFILES= mips-pinsn.o mips-tdep.o exec.o
  191. TM_FILE= tm-mips.h
  192. # Host: Little-endian MIPS machine such as DECstation.
  193. XDEPFILES= infptrace.o mips-xdep.o coredep.o
  194. XM_FILE= xm-mips.h
  195. # End of host and target-dependent makefile fragments
  196.  
  197. # Source files in the main directory.
  198. # Files which are included via a config/* Makefile fragment
  199. # should *not* be nspecified here; they're in "ALLDEPFILES".
  200. SFILES_MAINDIR = \
  201.      blockframe.c breakpoint.c command.c core.c \
  202.      environ.c eval.c expprint.c findvar.c inflow.c infrun.c \
  203.      main.c printcmd.c gdbtypes.c \
  204.      mips_kgdb_remote.c source.c stack.c symmisc.c symtab.c symfile.c \
  205.      utils.c valarith.c valops.c valprint.c values.c c-exp.y m2-exp.y \
  206.      signame.c cplus-dem.c mem-break.c target.c inftarg.c \
  207.      dbxread.c coffread.c elfread.c dwarfread.c xcoffread.c \
  208.      ieee-float.c language.c parse.c buildsym.c objfiles.c \
  209.      minsyms.c mipsread.c
  210.  
  211. # GDB source files
  212. GFILES_MAINDIR = \
  213.     infcmd.c ptrace.c
  214.  
  215. # KGDB source files
  216. KFILES_MAINDIR = \
  217.     kgdb_ptrace.c kgdbcmd.c kinfcmd.c
  218.  
  219. # Source files in subdirectories (which will be handled separately by
  220. #  'make gdb.tar.Z').
  221. # Files which are included via a config/* Makefile fragment
  222. # should *not* be specified here; they're in "ALLDEPFILES".
  223. SFILES_SUBDIR = \
  224.      ${srcdir}/vx-share/dbgRpcLib.h \
  225.      ${srcdir}/vx-share/ptrace.h \
  226.      ${srcdir}/vx-share/reg.h \
  227.      ${srcdir}/vx-share/vxTypes.h \
  228.      ${srcdir}/vx-share/vxWorks.h \
  229.      ${srcdir}/vx-share/wait.h \
  230.      ${srcdir}/vx-share/xdr_ld.h \
  231.      ${srcdir}/vx-share/xdr_ptrace.h \
  232.      ${srcdir}/vx-share/xdr_rdb.h \
  233.      ${srcdir}/vx-share/xdr_regs.h \
  234.      ${srcdir}/nindy-share/b.out.h \
  235.      ${srcdir}/nindy-share/block_io.h \
  236.      ${srcdir}/nindy-share/coff.h \
  237.      ${srcdir}/nindy-share/demux.h \
  238.      ${srcdir}/nindy-share/env.h \
  239.      ${srcdir}/nindy-share/stop.h \
  240.      ${srcdir}/nindy-share/ttycntl.h
  241.  
  242. # Non-source files in subdirs, that should go into gdb.tar.Z.
  243. NONSRC_SUBDIR = \
  244.      ${srcdir}/nindy-share/Makefile \
  245.      ${srcdir}/nindy-share/VERSION
  246.  
  247. # All source files that go into linking GDB, except config-specified files.
  248. SFILES = $(SFILES_MAINDIR) $(SFILES_SUBDIR)
  249.  
  250. # All source files that lint should look at
  251. LINTFILES = $(SFILES) $(YYFILES) init.c
  252.  
  253. # Any additional files specified on these lines should also be added to
  254. # the OTHERS = definition below, so they go in the tar files.
  255. SFILES_STAND = $(SFILES) standalone.c
  256. SFILES_KGDB  = $(SFILES) stuff.c kdb-start.c
  257.  
  258. # Header files that are not named in config/* Makefile fragments go here.
  259. HFILES=    breakpoint.h buildsym.h call-cmds.h command.h defs.h environ.h \
  260.     expression.h frame.h gdbcmd.h gdbcore.h gdbtypes.h \
  261.     ieee-float.h inferior.h minimon.h objfiles.h partial-stab.h \
  262.     signals.h signame.h symfile.h symtab.h solib.h xcoffsolib.h \
  263.     target.h terminal.h tm-68k.h tm-i960.h tm-sunos.h tm-sysv4.h \
  264.     xm-m68k.h xm-sysv4.h language.h parser-defs.h value.h xm-vax.h
  265.  
  266. REMOTE_EXAMPLES = m68k-stub.c i386-stub.c rem-multi.shar
  267.  
  268. POSSLIBS_MAINDIR = regex.c regex.h alloca.c
  269. POSSLIBS = $(POSSLIBS_MAINDIR)
  270.  
  271. TESTS = testbpt.c testfun.c testrec.c testreg.c testregs.c
  272.  
  273. OTHERS = Makefile.in depend alldeps.mak createtags munch configure.in \
  274.      ChangeLog ChangeLog-9091 ChangeLog-3.x gdb.1 refcard.ps \
  275.      README TODO TAGS WHATS.NEW Projects \
  276.      .gdbinit COPYING $(YYFILES) \
  277.      copying.c Convex.notes copying.awk \
  278.      saber.suppress standalone.c stuff.c kdb-start.c \
  279.      putenv.c
  280.  
  281. # Subdirectories of gdb, which should be included in their entirety in
  282. # gdb-xxx.tar.Z:
  283. TARDIRS = doc # tests
  284.  
  285. # GDB "info" files, which should be included in their entirety
  286. INFOFILES = gdb.info*
  287.  
  288. DEPFILES= ${TDEPFILES} ${XDEPFILES}
  289.  
  290. SOURCES=$(SFILES) $(ALLDEPFILES) $(YYFILES)
  291. TAGFILES = $(SOURCES) ${HFILES} ${ALLPARAM} ${POSSLIBS} 
  292. TAGFILES_MAINDIR = $(SFILES_MAINDIR) $(ALLDEPFILES_MAINDIR) \
  293.              ${HFILES} ${ALLPARAM} ${POSSLIBS_MAINDIR} 
  294. TARFILES = ${TAGFILES_MAINDIR} ${OTHERS} ${REMOTE_EXAMPLES}
  295.  
  296. OBS = main.o blockframe.o breakpoint.o findvar.o stack.o source.o \
  297.     values.o eval.o valops.o valarith.o valprint.o printcmd.o \
  298.     symtab.o symfile.o symmisc.o infrun.o \
  299.     command.o utils.o expprint.o environ.o version.o gdbtypes.o \
  300.     copying.o $(DEPFILES) signame.o cplus-dem.o mem-break.o target.o \
  301.     inftarg.o ieee-float.o putenv.o parse.o language.o $(YYOBJ) \
  302.     buildsym.o objfiles.o minsyms.o \
  303.     dbxread.o coffread.o elfread.o dwarfread.o xcoffread.o mipsread.o
  304.  
  305. GOBS = infcmd.o remote.o ptrace.o
  306.  
  307. KOBS = kgdb_ptrace.o mips_kgdb_remote.o kgdbcmd.o kinfcmd.o
  308.  
  309. RAPP_OBS = rgdb.o rudp.o rserial.o serial.o udp.o $(XDEPFILES)
  310.  
  311. TSOBS = core.o inflow.o
  312.  
  313. NTSOBS = standalone.o
  314.  
  315. TSSTART = /lib/crt0.o
  316.  
  317. NTSSTART = kdb-start.o
  318.  
  319. SUBDIRS = doc
  320.  
  321. # For now, shortcut the "configure GDB for fewer languages" stuff.
  322. YYFILES = c-exp.tab.c m2-exp.tab.c
  323. YYOBJ = c-exp.tab.o m2-exp.tab.o
  324.  
  325. # Prevent Sun make from putting in the machine type.  Setting
  326. # TARGET_ARCH to nothing works for SunOS 3, 4.0, but not for 4.1.
  327. .c.o:
  328.     ${CC} -c ${CFLAGS} $<
  329.  
  330. all: gdb
  331.     $(MAKE) subdir_do DO=all "DODIRS=$(SUBDIRS)"
  332. kgdb: kgdb-4.5
  333. check:
  334. info: force
  335.     $(MAKE) subdir_do DO=info "DODIRS=$(SUBDIRS)" "MAKEINFO=$(MAKEINFO)"
  336. install-info: force
  337.     $(MAKE) subdir_do DO=install-info "DODIRS=$(SUBDIRS)"
  338. clean-info: force
  339.     $(MAKE) subdir_do DO=clean-info "DODIRS=$(SUBDIRS)"
  340.  
  341. gdb.z:gdb.1
  342.     nroff -man $(srcdir)/gdb.1 | col -b > gdb.t 
  343.     pack gdb.t ; rm -f gdb.t
  344.     mv gdb.t.z gdb.z
  345.     
  346. install: gdb 
  347.     $(INSTALL_PROGRAM) gdb $(bindir)/$(program_prefix)gdb
  348.     $(INSTALL_DATA) $(srcdir)/gdb.1 $(man1dir)/$(program_prefix)gdb.1
  349.     $(M_INSTALL)
  350.     $(MAKE) subdir_do DO=install "DODIRS=$(SUBDIRS)"
  351.  
  352. init.c: $(srcdir)/munch $(OBS) $(TSOBS)
  353.     $(srcdir)/munch ${MUNCH_DEFINE} $(GOBS) $(OBS) $(TSOBS) > init.c
  354.  
  355. kinit.c: $(srcdir)/munch $(OBS) $(TSOBS)
  356.     $(srcdir)/munch ${MUNCH_DEFINE} $(KOBS) $(OBS) $(TSOBS) > kinit.c
  357.  
  358. gdb: $(OBS) $(TSOBS) ${ADD_DEPS} ${CDEPS} init.o
  359.     ${CC-LD} $(LDFLAGS) -o gdb-4.5 init.o $(OBS) $(GOBS) $(TSOBS) $(ADD_FILES) \
  360.       $(CLIBS) $(LOADLIBES)
  361.  
  362. kgdb-4.5: $(KOBS) $(OBS) $(TSOBS) ${ADD_DEPS} ${CDEPS} kinit.o
  363.     ${CC-LD} $(LDFLAGS) -o kgdb-4.5 kinit.o $(OBS) $(KOBS) $(TSOBS) $(ADD_FILES) \
  364.       $(CLIBS) $(LOADLIBES)
  365.  
  366. saber_gdb: $(SFILES) $(DEPFILES) copying.c version.c
  367.     #setopt load_flags $(CFLAGS) -I$(BFD_DIR) -DHOST_SYS=SUN4_SYS
  368.     #load ./init.c $(SFILES)
  369.     #unload ${srcdir}/c-exp.y ${srcdir}/m2-exp.y ${srcdir}/vx-share/*.h
  370.     #unload ${srcdir}/nindy-share/[A-Z]*
  371.     #load c-exp.tab.c m2-exp.tab.c
  372.     #load copying.c version.c
  373.     #load ../libiberty/libiberty.a
  374.     #load ../bfd/libbfd.a
  375.     #load ../readline/libreadline.a
  376.     #load ../mmalloc/libmmalloc.a
  377.     #load -ltermcap 
  378.     #load `echo " "$(DEPFILES) | sed -e 's/\.o/.c/g' -e 's, , ../,g'`
  379.     echo "Load .c corresponding to:" $(DEPFILES)
  380.  
  381.  
  382. # This is useful when debugging GDB, because some Unix's don't let you run GDB
  383. # on itself without copying the executable.  So "make gdb1" will make
  384. # gdb and put a copy in gdb1, and you can run it with "gdb gdb1".
  385. # Removing gdb1 before the copy is the right thing if gdb1 is open
  386. # in another process.
  387. gdb1: gdb
  388.     rm -f gdb1
  389.     cp gdb gdb1
  390.  
  391. # This is a remote stub which runs under unix and starts up an
  392. # inferior process.  This is at least useful for debugging GDB's
  393. # remote support.
  394. rapp: $(RAPP_OBS)
  395.     rm -f rapp_init.c
  396.     ${srcdir}/munch ${MUNCH_DEFINE} ${RAPP_OBS} > rapp_init.c
  397.     ${CC-LD} $(LDFLAGS) -o $@ rapp_init.c $(RAPP_OBS)
  398.     
  399. # Support for building Makefile out of configured pieces, automatically
  400. # generated dependencies, etc.  alldeps.mak is a file that contains
  401. # "make" variable definitions for all ALLDEPFILES, ALLDEPFILES_MAINDIR,
  402. # ALLDEPFILES_SUBDIR, ALLPARAM, and ALLCONFIG, all cadged from the current
  403. # contents of the config subdirectory.
  404.  
  405. alldeps.mak: ${srcdir}/config
  406.     rm -f alldeps.mak alldeps.tmp allparam.tmp allconfig.tmp
  407.     for i in `ls -d ${srcdir}/config/*.m[ht]` ; do \
  408.       echo $$i >>allconfig.tmp; \
  409.       awk <$$i ' \
  410.         $$1 == "TDEPFILES=" || $$1 == "XDEPFILES=" { \
  411.           for (i = 2; i <= NF; i++) \
  412.             print $$i >> "alldeps.tmp" ; \
  413.             } \
  414.         $$1 == "TM_FILE=" || $$1 == "XM_FILE=" { \
  415.           print $$2 >> "allparam.tmp" }' ; \
  416.     done
  417.     sort <alldeps.tmp | uniq | \
  418.       sed -e 's/arm-convert.o/arm-convert.s/' \
  419.           -e 's!^Onindy.o!nindy-share/Onindy.c!' \
  420.           -e 's!^nindy.o!nindy-share/nindy.c!' \
  421.           -e 's!ttybreak.o!nindy-share/ttybreak.c!' \
  422.           -e 's!ttyflush.o!nindy-share/ttyflush.c!' \
  423.           -e 's!xdr_ld.o!vx-share/xdr_ld.c!' \
  424.           -e 's!xdr_ptrace.o!vx-share/xdr_ptrace.c!' \
  425.           -e 's!xdr_rdb.o!vx-share/xdr_rdb.c!' \
  426.           -e 's!xdr_regs.o!vx-share/xdr_regs.c!' \
  427.           -e 's/\.o/.c/' \
  428.         >alldeps2.tmp
  429.     echo '# Start of "alldeps.mak" definitions' \
  430.         >>alldeps.mak;
  431.     echo 'ALLDEPFILES = $$(ALLDEPFILES_MAINDIR) $$(ALLDEPFILES_SUBDIR)' \
  432.         >>alldeps.mak;
  433.     grep -v / alldeps2.tmp | \
  434.       awk 'BEGIN {printf "ALLDEPFILES_MAINDIR="} \
  435.         NR == 0 {printf $$0;} \
  436.         NR != 0 {printf "\\\n" $$0} \
  437.         END {printf "\n\n"}' >>alldeps.mak;
  438.     grep / alldeps2.tmp | \
  439.       awk 'BEGIN {printf "ALLDEPFILES_SUBDIR="} \
  440.         NR == 0 {printf $$0;} \
  441.         NR != 0 {printf "\\\n" $$0} \
  442.         END {printf "\n\n"}' >>alldeps.mak;
  443.     sort <allparam.tmp | uniq | awk 'BEGIN {printf "ALLPARAM="} \
  444.         NR == 0 {printf $$0;} \
  445.         NR != 0 {printf "\\\n" $$0} \
  446.         END {printf "\n\n"}' >>alldeps.mak;
  447.     sort <allconfig.tmp | uniq | awk 'BEGIN {printf "ALLCONFIG="} \
  448.         NR == 0 {printf $$0;} \
  449.         NR != 0 {printf "\\\n" $$0} \
  450.         END {printf "\n\n"}' >>alldeps.mak;
  451.     echo '# End of "alldeps.mak" definitions' \
  452.         >>alldeps.mak;
  453.     rm -f alldeps.tmp alldeps2.tmp allparam.tmp allconfig.tmp
  454.  
  455. # The sed script makes everything which depends on {x,t}m.h depend on
  456. # config.status as well, in case someone reconfigures gdb out from
  457. # under an already compiled gdb.
  458. depend: $(SOURCES) Makefile.in
  459.     @echo Ignore errors about non-existent system-supplied include files
  460.     @echo for systems other than the one you are using.
  461.     @echo "If xm.h and tm.h don't exist, the error messages saying so"
  462.     @echo can safely be ignored.
  463.     @echo Also ignore parse errors in valops.c, and any errors in
  464.     @echo arm-convert.s.
  465.     -$(GCC) -MM -nostdinc -I/usr/include $(CFLAGS) -I$(BFD_DIR) \
  466.       `ls $(SOURCES) | grep -v '\.[hy]$$' |sort -u` >depend.tmp
  467. # If running in srcdir, translate "./foo.c" into "$srcdir/foo.c" except
  468. # for xm.h and tm.h.  This allows the same "depend" file to be used
  469. # by the various subdirectories.
  470.     if [ "${srcdir}" = "." ] ; then \
  471.       <depend.tmp sed \
  472.         -e 's; ./xm.h; xm.h;g'  \
  473.         -e 's; ./tm.h; tm.h;g'  \
  474.         -e 's; \./; $${srcdir}/;g'  \
  475.         -e 's; vx-share/; $${srcdir}/vx-share/;g'  \
  476.         -e 's; nindy-share/; $${srcdir}/nindy-share/;g'  \
  477.         >depend.tm2; \
  478.       rm depend.tmp; \
  479.       mv depend.tm2 depend.tmp; \
  480.     fi
  481.     <depend.tmp sed \
  482.       -e 's; [xt]m.h;& config.status;g'  \
  483.       -e 's; $(INCLUDE_DIR)/; $(INCLUDE_DEP)/;g'  \
  484.       -e 's; $(READLINE_DIR)/; $(READLINE_DEP)/;g'  \
  485.       -e 's; [a-z0-9./]*bfd/; $(BFD_DEP)/;g'  \
  486.       -e 's; ./xm.h; xm.h config.status;g'  \
  487.       -e 's; ./tm.h; tm.h config.status;g'  \
  488.       >depend
  489.     rm depend.tmp
  490.  
  491. config.status:
  492.     @echo "You must configure gdb.  Look at the README file for details."
  493.     @false
  494.  
  495. # These are not generated by "make depend" because they only are there
  496. # for some machines.
  497. # But these rules don't do what we want; we want to hack the foo.o: tm.h
  498. # dependency to do the right thing.
  499. tm-isi.h tm-sun3.h tm-news.h tm-hp300bsd.h tm-altos.h: tm-68k.h
  500. tm-hp300hpux.h tm-sun2.h tm-3b1.h: tm-68k.h
  501. xm-news1000.h: xm-news.h
  502. xm-i386-sv32.h: xm-i386.h
  503. tm-i386gas.h: tm-i386.h
  504. xm-sun4os4.h: xm-sparc.h
  505. tm-sun4os4.h: tm-sparc.h
  506. xm-vaxult.h: xm-vax.h
  507. xm-vaxbsd.h: xm-vax.h
  508.  
  509. kdb: $(NTSSTART) $(OBS) $(NTSOBS) ${ADD_DEPS} ${CDEPS}
  510.     rm -f init.c
  511.     $(srcdir)/munch ${MUNCH_DEFINE} $(OBS) $(NTSOBS) > init.c
  512.     $(CC) $(LDFLAGS) -c init.c $(CLIBS) 
  513.     ld -o kdb $(NTSSTART) $(OBS) $(NTSOBS) init.o $(ADD_FILES) \
  514.       -lc $(CLIBS)
  515.  
  516. # Put the proper machine-specific files first.
  517. # createtags will edit the .o in DEPFILES into .c
  518. TAGS: ${TAGFILES}
  519.     $(srcdir)/createtags $(TM_FILE) ${XM_FILE} $(DEPFILES) ${TAGFILES}
  520. tags: TAGS
  521.  
  522. # Making distributions of GDB and friends.
  523.  
  524. # Make a directory `proto-gdb.dir' that contains an image of the GDB
  525. # directory of the distribution, built up with symlinks.
  526. make-proto-gdb.dir: force_update 
  527.     $(MAKE) $(MFLAGS) -f Makefile.in setup-to-dist
  528.     $(MAKE) $(MFLAGS) -f Makefile    make-proto-gdb-1
  529.  
  530. # Make a tar file containing the GDB directory of the distribution.
  531. gdb.tar.Z: force_update
  532.     $(MAKE) $(MFLAGS) -f Makefile.in setup-to-dist
  533.     $(MAKE) $(MFLAGS) -f Makefile.in gdb-$(VERSION).tar.Z
  534.  
  535. # Set up the GDB directory for distribution, by building all files that
  536. # are products of other files.
  537. setup-to-dist: force_update
  538.     ../configure none
  539.     rm -f alldeps.mak
  540.     $(MAKE) $(MFLAGS) alldeps.mak
  541.     ../configure none
  542.     rm -f depend
  543.     $(MAKE) $(MFLAGS) depend
  544.     ../configure none
  545.     (cd doc; $(MAKE) $(MFLAGS) gdbVN.m4)
  546.     $(MAKE) $(MFLAGS) gdb.info
  547.     $(MAKE) $(MFLAGS) refcard.ps
  548.  
  549. # Build a tar file from a proto-gdb.dir.
  550. gdb-$(VERSION).tar.Z: force_update
  551.     rm -f gdb.tar gdb-$(VERSION).tar.Z
  552.     $(MAKE) $(MFLAGS) -f Makefile    make-proto-gdb-1
  553.     ln -s proto-gdb.dir $(DIST)
  554.     tar chf - $(DIST) | compress >gdb-$(VERSION).tar.Z
  555.     rm -rf $(DIST) proto-gdb.dir
  556.  
  557. # Build a proto-gdb.dir after GDB has been set up for distribution.
  558. # This stuff must be run in `Makefile', not `Makefile.in`; we use the makefile
  559. # built in the setup-to-dist process, since it defines things like ALLCONFIG
  560. # and ALLDEPFILES, that we need.
  561. make-proto-gdb-1: ${TARFILES} ${TARDIRS} gdb.info
  562.     rm -rf proto-gdb.dir
  563.     mkdir proto-gdb.dir
  564.     cd proto-gdb.dir ; for i in ${TARFILES} ; do ln -s ../$$i . ; done
  565.     cd proto-gdb.dir ; ln -s ../${INFOFILES} .
  566.     cd proto-gdb.dir ; for i in ${TARDIRS}; do \
  567.       (mkdir $$i; cd $$i; \
  568.       ln -s ../../$$i/* .; \
  569.       rm -rf SCCS CVS.adm RCS config.status); done
  570.     mkdir proto-gdb.dir/config
  571.     cd proto-gdb.dir/config ; \
  572.       for i in $(ALLCONFIG) ; do ln -s ../../$$i ../$$i ; done
  573.     mkdir proto-gdb.dir/vx-share proto-gdb.dir/nindy-share
  574.     cd proto-gdb.dir/config ; \
  575.       for i in $(SFILES_SUBDIR) $(NONSRC_SUBDIR) $(ALLDEPFILES_SUBDIR); \
  576.         do ln -s ../../$$i ../$$i ; done
  577.     chmod og=u `find . -print`
  578.  
  579. clean:
  580.     rm -f *.o ${ADD_FILES}
  581.     rm -f init.c version.c
  582.     rm -f gdb core gdb.tar gdb.tar.Z make.log
  583.     rm -f gdb[0-9]
  584.     $(MAKE) subdir_do DO=clean "DODIRS=$(SUBDIRS)"
  585.  
  586. distclean: clean c-exp.tab.c m2-exp.tab.c TAGS
  587.     rm -f tm.h xm.h config.status
  588.     rm -f y.output yacc.acts yacc.tmp
  589.     rm -f ${TESTS} Makefile depend
  590.     $(MAKE) subdir_do DO=distclean "DODIRS=$(SUBDIRS)"
  591.  
  592. realclean: clean
  593.     rm -f c-exp.tab.c m2-exp.tab.c TAGS
  594.     rm -f tm.h xm.h config.status
  595.     rm -f Makefile depend
  596.     $(MAKE) subdir_do DO=realclean "DODIRS=$(SUBDIRS)"
  597.  
  598. STAGESTUFF=${OBS} ${TSOBS} ${NTSOBS} ${ADD_FILES} init.c init.o version.c gdb
  599.  
  600. subdir_do: force
  601.     for i in $(DODIRS); do \
  602.         if [ -d ./$$i ] ; then \
  603.             if (cd ./$$i; \
  604.                 $(MAKE) \
  605.                     "against=$(against)" \
  606.                     "AR=$(AR)" \
  607.                     "AR_FLAGS=$(AR_FLAGS)" \
  608.                     "CC=$(CC)" \
  609.                     "RANLIB=$(RANLIB)" \
  610.                     "MAKEINFO=$(MAKEINFO)" \
  611.                     "BISON=$(BISON)" $(DO)) ; then true ; \
  612.             else exit 1 ; fi ; \
  613.         else true ; fi ; \
  614.     done
  615.  
  616. # Copy the object files from a particular stage into a subdirectory.
  617. stage1: force
  618.     -mkdir stage1
  619.     -mv -f $(STAGESTUFF) stage1
  620.     $(MAKE) subdir_do DO=stage1 "DODIRS=$(SUBDIRS)"
  621.  
  622. stage2: force
  623.     -mkdir stage2
  624.     -mv -f $(STAGESTUFF) stage2
  625.     $(MAKE) subdir_do DO=stage2 "DODIRS=$(SUBDIRS)"
  626.  
  627. stage3: force
  628.     -mkdir stage3
  629.     -mv -f $(STAGESTUFF) stage3
  630.     $(MAKE) subdir_do DO=stage3 "DODIRS=$(SUBDIRS)"
  631.  
  632. against=stage2
  633.  
  634. comparison: force
  635.     for i in $(STAGESTUFF) ; do cmp $$i $(against)/$$i ; done
  636.     $(MAKE) subdir_do DO=comparison "DODIRS=$(SUBDIRS)"
  637.  
  638. de-stage1: force
  639.     -(cd stage1 ; mv -f * ..)
  640.     -rmdir stage1
  641.     $(MAKE) subdir_do DO=de-stage1 "DODIRS=$(SUBDIRS)"
  642.  
  643. de-stage2: force
  644.     -(cd stage2 ; mv -f * ..)
  645.     -rmdir stage2
  646.     $(MAKE) subdir_do DO=de-stage2 "DODIRS=$(SUBDIRS)"
  647.  
  648. de-stage3: force
  649.     -(cd stage3 ; mv -f * ..)
  650.     -rmdir stage3
  651.     $(MAKE) subdir_do DO=de-stage3 "DODIRS=$(SUBDIRS)"
  652.  
  653. Makefile: $(srcdir)/Makefile.in $(host_makefile_frag) $(target_makefile_frag)
  654.     $(SHELL) ./config.status
  655.  
  656. force:
  657.  
  658. # Documentation!
  659. # GDB QUICK REFERENCE (TeX dvi file, CM fonts)
  660. refcard.dvi: $(srcdir)/doc/refcard.tex
  661.     ( cd ./doc; $(MAKE) refcard.dvi )
  662.     mv ./doc/refcard.dvi .
  663.  
  664. # GDB QUICK REFERENCE (PostScript output, common PS fonts)
  665. refcard.ps: $(srcdir)/doc/refcard.tex
  666.     ( cd ./doc; $(MAKE) refcard.ps )
  667.     mv ./doc/refcard.ps .
  668.  
  669. # GDB MANUAL: TeX dvi file
  670. gdb.dvi: ./doc/gdb-all.texi
  671.     ( cd ./doc; $(MAKE) M4=$(M4) gdb.dvi )
  672.     mv ./doc/gdb.dvi .
  673.  
  674. # GDB MANUAL: info file
  675. gdb.info: ./doc/gdb-all.texi
  676.     ( cd ./doc; $(MAKE) M4=$(M4) gdb.info )
  677.     mv ./doc/gdb.info* .
  678.  
  679. ./doc/gdb-all.texi:
  680.     (cd $(srcdir)/doc; $(MAKE) M4=$(M4) gdb-all.texi)
  681.  
  682. # Make copying.c from COPYING
  683. copying.c: ${srcdir}/COPYING ${srcdir}/copying.awk
  684.     awk -f ${srcdir}/copying.awk < ${srcdir}/COPYING > copying.c
  685.  
  686. version.c: Makefile.in
  687.     echo 'char *version = "$(VERSION)";' >version.c
  688.  
  689. # c-exp.tab.c is generated in target dir from c-exp.y if it doesn't exist
  690. # in srcdir, then compiled in target dir to c-exp.tab.o.
  691. c-exp.tab.o: c-exp.tab.c
  692. c-exp.tab.c: $(srcdir)/c-exp.y
  693.     @echo 'Expect 4 shift/reduce conflicts.'
  694.     ${YACC} $(srcdir)/c-exp.y
  695.     -mv y.tab.c c-exp.tab.c
  696.  
  697. # m2-exp.tab.c is generated in target dir from m2-exp.y if it doesn't exist
  698. # in srcdir, then compiled in target dir to m2-exp.tab.o.
  699. m2-exp.tab.o: m2-exp.tab.c
  700. m2-exp.tab.c: $(srcdir)/m2-exp.y
  701.     ${YACC} $(srcdir)/m2-exp.y
  702.     -mv y.tab.c m2-exp.tab.c
  703.  
  704. # The symbol-file readers have dependencies on BFD header files.
  705. dbxread.o: ${srcdir}/dbxread.c
  706.     ${CC} -c ${CFLAGS} -I$(BFD_DIR) ${srcdir}/dbxread.c
  707.  
  708. coffread.o: ${srcdir}/coffread.c
  709.     ${CC} -c ${CFLAGS} -I$(BFD_DIR) ${srcdir}/coffread.c
  710.  
  711. mipsread.o: ${srcdir}/mipsread.c
  712.     ${CC} -c ${CFLAGS} -I$(BFD_DIR) ${srcdir}/mipsread.c
  713.  
  714. elfread.o: ${srcdir}/elfread.c
  715.     ${CC} -c ${CFLAGS} -I$(BFD_DIR) ${srcdir}/elfread.c
  716.  
  717. dwarfread.o: ${srcdir}/dwarfread.c
  718.     ${CC} -c ${CFLAGS} -I$(BFD_DIR) ${srcdir}/dwarfread.c
  719.  
  720. xcoffread.o: ${srcdir}/xcoffread.c
  721.     ${CC} -c ${CFLAGS} -I$(BFD_DIR) ${srcdir}/xcoffread.c
  722.  
  723. xcoffexec.o: ${srcdir}/xcoffexec.c
  724.     ${CC} -c ${CFLAGS} -I$(BFD_DIR) ${srcdir}/xcoffexec.c
  725.  
  726. # Drag in the files that are in another directory.
  727.  
  728. xdr_ld.o: ${srcdir}/vx-share/xdr_ld.c
  729.     ${CC} -c ${CFLAGS} ${srcdir}/vx-share/xdr_ld.c
  730.  
  731. xdr_ptrace.o: ${srcdir}/vx-share/xdr_ptrace.c
  732.     ${CC} -c ${CFLAGS} ${srcdir}/vx-share/xdr_ptrace.c
  733.  
  734. xdr_rdb.o: ${srcdir}/vx-share/xdr_rdb.c
  735.     ${CC} -c ${CFLAGS} ${srcdir}/vx-share/xdr_rdb.c
  736.  
  737. xdr_regs.o: ${srcdir}/vx-share/xdr_regs.c
  738.     ${CC} -c ${CFLAGS} ${srcdir}/vx-share/xdr_regs.c
  739.  
  740. nindy.o: ${srcdir}/nindy-share/nindy.c
  741.     ${CC} -c ${CFLAGS} ${srcdir}/nindy-share/nindy.c
  742.  
  743. Onindy.o: ${srcdir}/nindy-share/Onindy.c
  744.     ${CC} -c ${CFLAGS} ${srcdir}/nindy-share/Onindy.c
  745.  
  746. ttybreak.o: ${srcdir}/nindy-share/ttybreak.c
  747.     ${CC} -c ${CFLAGS} ${srcdir}/nindy-share/ttybreak.c
  748.  
  749. ttyflush.o: ${srcdir}/nindy-share/ttyflush.c
  750.     ${CC} -c ${CFLAGS} ${srcdir}/nindy-share/ttyflush.c
  751.  
  752. lint: $(LINTFILES)
  753.     $(LINT) $(INCLUDE_CFLAGS) $(LINTFLAGS) $(LINTFILES) \
  754.        `echo ${DEPFILES} | sed 's/\.o /\.c /g'
  755.  
  756. gdb.cxref: $(SFILES)
  757.     cxref -I. $(SFILES) >gdb.cxref
  758.  
  759. force_update:
  760.  
  761. # When used with GDB, the demangler should never look for leading
  762. # underscores because GDB strips them off during symbol read-in.  Thus
  763. # -Dnounderscore.  
  764.  
  765. cplus-dem.o: cplus-dem.c
  766.     ${CC} -c ${CFLAGS} -Dnounderscore \
  767.       `echo ${srcdir}/cplus-dem.c | sed 's,^\./,,'`
  768.  
  769. # GNU Make has an annoying habit of putting *all* the Makefile variables
  770. # into the environment, unless you include this target as a circumvention.
  771. # Rumor is that this will be fixed (and this target can be removed)
  772. # in GNU Make 4.0.
  773. .NOEXPORT:
  774.  
  775. # This is the end of "Makefile.in".  When built into "Makefile"
  776. # by the configure script, two things are added below this point:
  777. #     alldeps.mak -- defintions of all files that are used in
  778. #            host- or target-dependent configurations
  779. #    depend -- what .o files depend on what .c and .h files,
  780. #            for all configurations.
  781.  
  782.  
  783. # Start of "alldeps.mak" definitions
  784. ALLDEPFILES = $(ALLDEPFILES_MAINDIR) $(ALLDEPFILES_SUBDIR)
  785. ALLDEPFILES_MAINDIR=\
  786. a68v-xdep.c\
  787. altos-xdep.c\
  788. am29k-pinsn.c\
  789. am29k-tdep.c\
  790. arm-convert.s\
  791. arm-pinsn.c\
  792. arm-tdep.c\
  793. arm-xdep.c\
  794. convex-pinsn.c\
  795. convex-tdep.c\
  796. convex-xdep.c\
  797. coredep.c\
  798. exec.c\
  799. gould-pinsn.c\
  800. gould-xdep.c\
  801. h8300-tdep.c\
  802. hp300ux-xdep.c\
  803. i386-pinsn.c\
  804. i386-tdep.c\
  805. i386-xdep.c\
  806. i387-tdep.c\
  807. i960-pinsn.c\
  808. i960-tdep.c\
  809. infptrace.c\
  810. m68k-pinsn.c\
  811. m68k-tdep.c\
  812. m88k-pinsn.c\
  813. m88k-tdep.c\
  814. m88k-xdep.c\
  815. mach386-xdep.c\
  816. mips-pinsn.c\
  817. mips-tdep.c\
  818. mips-xdep.c\
  819. news-xdep.c\
  820. nindy-tdep.c\
  821. ns32k-pinsn.c\
  822. procfs.c\
  823. pyr-pinsn.c\
  824. pyr-tdep.c\
  825. pyr-xdep.c\
  826. remote-adapt.c\
  827. remote-eb.c\
  828. remote-hms.c\
  829. remote-mm.c\
  830. remote-nindy.c\
  831. remote-vx.c\
  832. rs6000-pinsn.c\
  833. rs6000-tdep.c\
  834. rs6000-xdep.c\
  835. solib.c\
  836. sparc-pinsn.c\
  837. sparc-tdep.c\
  838. sparc-xdep.c\
  839. sun3-xdep.c\
  840. sun386-xdep.c\
  841. symm-tdep.c\
  842. symm-xdep.c\
  843. tahoe-pinsn.c\
  844. ultra3-xdep.c\
  845. umax-xdep.c\
  846. vax-pinsn.c\
  847. xcoffexec.c\
  848. xcoffsolib.c
  849.  
  850. ALLDEPFILES_SUBDIR=\
  851. nindy-share/Onindy.c\
  852. nindy-share/nindy.c\
  853. nindy-share/ttybreak.c\
  854. nindy-share/ttyflush.c\
  855. vx-share/xdr_ld.c\
  856. vx-share/xdr_ptrace.c\
  857. vx-share/xdr_rdb.c\
  858. vx-share/xdr_regs.c
  859.  
  860. ALLPARAM=\
  861. tm-29k.h\
  862. tm-3b1.h\
  863. tm-altos.h\
  864. tm-altosgas.h\
  865. tm-amix.h\
  866. tm-arm.h\
  867. tm-bigmips.h\
  868. tm-convex.h\
  869. tm-delta88.h\
  870. tm-h8300.h\
  871. tm-hp300bsd.h\
  872. tm-hp300hpux.h\
  873. tm-i386v-g.h\
  874. tm-i386v.h\
  875. tm-i386v4.h\
  876. tm-irix3.h\
  877. tm-isi.h\
  878. tm-m88k.h\
  879. tm-merlin.h\
  880. tm-mips.h\
  881. tm-news.h\
  882. tm-nindy960.h\
  883. tm-np1.h\
  884. tm-os68k.h\
  885. tm-pn.h\
  886. tm-pyr.h\
  887. tm-rs6000.h\
  888. tm-sparc.h\
  889. tm-stratus.h\
  890. tm-sun2.h\
  891. tm-sun2os4.h\
  892. tm-sun3.h\
  893. tm-sun386.h\
  894. tm-sun3os4.h\
  895. tm-sun4os4.h\
  896. tm-sun4os5.h\
  897. tm-symmetry.h\
  898. tm-tahoe.h\
  899. tm-ultra3.h\
  900. tm-umax.h\
  901. tm-vax.h\
  902. tm-vx68.h\
  903. tm-vx960.h\
  904. xm-3b1.h\
  905. xm-altos.h\
  906. xm-amix.h\
  907. xm-apollo68v.h\
  908. xm-arm.h\
  909. xm-bigmips.h\
  910. xm-convex.h\
  911. xm-delta88.h\
  912. xm-hp300bsd.h\
  913. xm-hp300hpux.h\
  914. xm-i386mach.h\
  915. xm-i386sco.h\
  916. xm-i386v.h\
  917. xm-i386v32.h\
  918. xm-i386v4.h\
  919. xm-irix3.h\
  920. xm-irix4.h\
  921. xm-isi.h\
  922. xm-m88k.h\
  923. xm-merlin.h\
  924. xm-mips.h\
  925. xm-news.h\
  926. xm-news1000.h\
  927. xm-np1.h\
  928. xm-pn.h\
  929. xm-pyr.h\
  930. xm-rs6000.h\
  931. xm-rtbsd.h\
  932. xm-sparc.h\
  933. xm-stratus.h\
  934. xm-sun2.h\
  935. xm-sun3.h\
  936. xm-sun386.h\
  937. xm-sun3os4.h\
  938. xm-sun4os4.h\
  939. xm-sun4os5.h\
  940. xm-symmetry.h\
  941. xm-tahoe.h\
  942. xm-ultra3.h\
  943. xm-umax.h\
  944. xm-vaxbsd.h\
  945. xm-vaxult.h
  946.  
  947. ALLCONFIG=\
  948. ./config/3b1.mh\
  949. ./config/3b1.mt\
  950. ./config/a29k-kern.mt\
  951. ./config/a29k.mt\
  952. ./config/altos.mh\
  953. ./config/altos.mt\
  954. ./config/altosgas.mh\
  955. ./config/altosgas.mt\
  956. ./config/amix.mh\
  957. ./config/amix.mt\
  958. ./config/apollo68v.mh\
  959. ./config/arm.mh\
  960. ./config/arm.mt\
  961. ./config/bigmips.mh\
  962. ./config/bigmips.mt\
  963. ./config/convex.mh\
  964. ./config/convex.mt\
  965. ./config/decstation.mh\
  966. ./config/decstation.mt\
  967. ./config/delta88.mh\
  968. ./config/delta88.mt\
  969. ./config/h8300hms.mt\
  970. ./config/hp300bsd.mh\
  971. ./config/hp300bsd.mt\
  972. ./config/hp300hpux.mh\
  973. ./config/hp300hpux.mt\
  974. ./config/i386aout.mt\
  975. ./config/i386mach.mh\
  976. ./config/i386sco.mh\
  977. ./config/i386sco.mt\
  978. ./config/i386v-g.mh\
  979. ./config/i386v-g.mt\
  980. ./config/i386v.mh\
  981. ./config/i386v.mt\
  982. ./config/i386v32-g.mh\
  983. ./config/i386v32-g.mt\
  984. ./config/i386v32.mh\
  985. ./config/i386v32.mt\
  986. ./config/i386v4.mh\
  987. ./config/i386v4.mt\
  988. ./config/i960.mt\
  989. ./config/irix3.mh\
  990. ./config/irix3.mt\
  991. ./config/irix4.mh\
  992. ./config/isi.mh\
  993. ./config/isi.mt\
  994. ./config/littlemips.mh\
  995. ./config/littlemips.mt\
  996. ./config/m88k.mh\
  997. ./config/m88k.mt\
  998. ./config/merlin.mh\
  999. ./config/merlin.mt\
  1000. ./config/news.mh\
  1001. ./config/news.mt\
  1002. ./config/news1000.mh\
  1003. ./config/news1000.mt\
  1004. ./config/nindy960.mt\
  1005. ./config/none.mh\
  1006. ./config/none.mt\
  1007. ./config/np1.mh\
  1008. ./config/np1.mt\
  1009. ./config/os68k.mt\
  1010. ./config/pn.mh\
  1011. ./config/pn.mt\
  1012. ./config/pyramid.mh\
  1013. ./config/pyramid.mt\
  1014. ./config/rs6000.mh\
  1015. ./config/rs6000.mt\
  1016. ./config/rtbsd.mh\
  1017. ./config/stratus.mh\
  1018. ./config/stratus.mt\
  1019. ./config/sun2os3.mh\
  1020. ./config/sun2os3.mt\
  1021. ./config/sun2os4.mh\
  1022. ./config/sun2os4.mt\
  1023. ./config/sun3.mh\
  1024. ./config/sun3.mt\
  1025. ./config/sun386.mh\
  1026. ./config/sun386.mt\
  1027. ./config/sun3os3.mh\
  1028. ./config/sun3os3.mt\
  1029. ./config/sun3os4.mh\
  1030. ./config/sun3os4.mt\
  1031. ./config/sun4.mh\
  1032. ./config/sun4.mt\
  1033. ./config/sun4os3.mh\
  1034. ./config/sun4os3.mt\
  1035. ./config/sun4os4.mh\
  1036. ./config/sun4os4.mt\
  1037. ./config/sun4os5.mh\
  1038. ./config/sun4os5.mt\
  1039. ./config/symmetry.mh\
  1040. ./config/symmetry.mt\
  1041. ./config/tahoe.mh\
  1042. ./config/tahoe.mt\
  1043. ./config/ultra3.mh\
  1044. ./config/ultra3.mt\
  1045. ./config/umax.mh\
  1046. ./config/umax.mt\
  1047. ./config/vax.mt\
  1048. ./config/vaxbsd.mh\
  1049. ./config/vaxult.mh\
  1050. ./config/vxworks68.mt\
  1051. ./config/vxworks960.mt
  1052.  
  1053. # End of "alldeps.mak" definitions
  1054. a68v-xdep.o : a68v-xdep.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status inferior.h \
  1055.   symtab.h ${srcdir}/../include/obstack.h breakpoint.h frame.h value.h gdbtypes.h expression.h \
  1056.   gdbcore.h ${srcdir}/../include/bfd.h 
  1057. altos-xdep.o : altos-xdep.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status frame.h \
  1058.   inferior.h symtab.h ${srcdir}/../include/obstack.h breakpoint.h value.h gdbtypes.h expression.h \
  1059.   gdbcore.h ${srcdir}/../include/bfd.h 
  1060. am29k-pinsn.o : am29k-pinsn.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status target.h \
  1061.   ${srcdir}/../include/bfd.h ${srcdir}/../include/obstack.h am29k-opcode.h 
  1062. am29k-tdep.o : am29k-tdep.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status gdbcore.h \
  1063.   ${srcdir}/../include/bfd.h ${srcdir}/../include/obstack.h frame.h value.h symtab.h gdbtypes.h \
  1064.   expression.h inferior.h breakpoint.h 
  1065. arm-pinsn.o : arm-pinsn.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status symtab.h \
  1066.   ${srcdir}/../include/obstack.h ${srcdir}/../include/opcode/arm.h 
  1067. arm-tdep.o : arm-tdep.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status frame.h inferior.h \
  1068.   symtab.h ${srcdir}/../include/obstack.h breakpoint.h value.h gdbtypes.h expression.h \
  1069.   arm-opcode.h gdbcore.h ${srcdir}/../include/bfd.h 
  1070. arm-xdep.o : arm-xdep.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status frame.h inferior.h \
  1071.   symtab.h ${srcdir}/../include/obstack.h breakpoint.h value.h gdbtypes.h expression.h \
  1072.   arm-opcode.h gdbcore.h ${srcdir}/../include/bfd.h 
  1073. blockframe.o : blockframe.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status symtab.h \
  1074.   ${srcdir}/../include/obstack.h ${srcdir}/../include/bfd.h symfile.h objfiles.h frame.h gdbcore.h \
  1075.   value.h gdbtypes.h expression.h target.h inferior.h breakpoint.h 
  1076. breakpoint.o : breakpoint.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status symtab.h \
  1077.   ${srcdir}/../include/obstack.h frame.h breakpoint.h value.h gdbtypes.h expression.h \
  1078.   gdbcore.h ${srcdir}/../include/bfd.h gdbcmd.h command.h inferior.h target.h language.h 
  1079. buildsym.o : buildsym.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status ${srcdir}/../include/obstack.h \
  1080.   symtab.h gdbtypes.h breakpoint.h frame.h value.h expression.h gdbcore.h ${srcdir}/../include/bfd.h \
  1081.   symfile.h objfiles.h ${srcdir}/../include/aout/stab_gnu.h ${srcdir}/../include/aout/stab.def \
  1082.   buildsym.h 
  1083. c-exp.tab.o : c-exp.tab.c ${srcdir}/defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status ${srcdir}/symtab.h \
  1084.   ${srcdir}/../include/obstack.h ${srcdir}/gdbtypes.h ${srcdir}/frame.h ${srcdir}/expression.h ${srcdir}/parser-defs.h \
  1085.   ${srcdir}/value.h ${srcdir}/language.h ${srcdir}/../include/bfd.h ${srcdir}/symfile.h ${srcdir}/objfiles.h 
  1086. coffread.o : coffread.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status symtab.h ${srcdir}/../include/obstack.h \
  1087.   gdbtypes.h breakpoint.h frame.h value.h expression.h ${srcdir}/../include/bfd.h symfile.h \
  1088.   objfiles.h buildsym.h ${srcdir}/../include/coff/internal.h ${srcdir}/../bfd/libcoff.h 
  1089. command.o : command.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status gdbcmd.h command.h \
  1090.   symtab.h ${srcdir}/../include/obstack.h value.h gdbtypes.h expression.h 
  1091. convex-pinsn.o : convex-pinsn.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status symtab.h \
  1092.   ${srcdir}/../include/obstack.h convx-opcode.h 
  1093. convex-tdep.o : convex-tdep.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status command.h \
  1094.   symtab.h ${srcdir}/../include/obstack.h value.h gdbtypes.h expression.h frame.h inferior.h \
  1095.   breakpoint.h ${srcdir}/../include/wait.h gdbcore.h ${srcdir}/../include/bfd.h gdbcmd.h 
  1096. convex-xdep.o : convex-xdep.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status command.h \
  1097.   symtab.h ${srcdir}/../include/obstack.h value.h gdbtypes.h expression.h frame.h inferior.h \
  1098.   breakpoint.h ${srcdir}/../include/wait.h gdbcore.h ${srcdir}/../include/bfd.h gdbcmd.h 
  1099. core.o : core.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status frame.h inferior.h \
  1100.   symtab.h ${srcdir}/../include/obstack.h breakpoint.h value.h gdbtypes.h expression.h \
  1101.   command.h ${srcdir}/../include/bfd.h target.h gdbcore.h 
  1102. coredep.o : coredep.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status gdbcore.h ${srcdir}/../include/bfd.h \
  1103.   ${srcdir}/../include/obstack.h 
  1104. cplus-dem.o : cplus-dem.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status 
  1105. dbxread.o : dbxread.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status symtab.h breakpoint.h \
  1106.   frame.h value.h gdbtypes.h expression.h command.h target.h ${srcdir}/../include/bfd.h \
  1107.   gdbcore.h ${srcdir}/../bfd/libbfd.h ${srcdir}/../bfd/libaout.h symfile.h objfiles.h buildsym.h \
  1108.   ${srcdir}/../include/aout/aout64.h ${srcdir}/../include/aout/stab_gnu.h ${srcdir}/../include/aout/stab.def \
  1109.   partial-stab.h 
  1110. dwarfread.o : dwarfread.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status ${srcdir}/../include/bfd.h \
  1111.   ${srcdir}/../include/obstack.h symtab.h gdbtypes.h symfile.h objfiles.h ${srcdir}/../bfd/libbfd.h \
  1112.   ${srcdir}/../include/elf/dwarf.h buildsym.h 
  1113. elfread.o : elfread.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status ${srcdir}/../include/elf/common.h \
  1114.   ${srcdir}/../include/elf/external.h ${srcdir}/../include/elf/internal.h ${srcdir}/../include/bfd.h ${srcdir}/../include/obstack.h \
  1115.   symtab.h symfile.h objfiles.h buildsym.h 
  1116. environ.o : environ.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status environ.h 
  1117. eval.o : eval.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status symtab.h ${srcdir}/../include/obstack.h \
  1118.   gdbtypes.h value.h expression.h target.h ${srcdir}/../include/bfd.h frame.h 
  1119. exec.o : exec.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status frame.h inferior.h \
  1120.   symtab.h ${srcdir}/../include/obstack.h breakpoint.h value.h gdbtypes.h expression.h \
  1121.   target.h ${srcdir}/../include/bfd.h gdbcmd.h command.h gdbcore.h 
  1122. expprint.o : expprint.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status symtab.h ${srcdir}/../include/obstack.h \
  1123.   gdbtypes.h expression.h value.h language.h parser-defs.h 
  1124. findvar.o : findvar.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status symtab.h ${srcdir}/../include/obstack.h \
  1125.   gdbtypes.h frame.h value.h expression.h gdbcore.h ${srcdir}/../include/bfd.h inferior.h \
  1126.   breakpoint.h target.h 
  1127. gdbtypes.o : gdbtypes.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status ${srcdir}/../include/bfd.h \
  1128.   ${srcdir}/../include/obstack.h symtab.h symfile.h objfiles.h gdbtypes.h expression.h \
  1129.   language.h target.h value.h 
  1130. gould-pinsn.o : gould-pinsn.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status symtab.h \
  1131.   ${srcdir}/../include/obstack.h frame.h gdbcore.h ${srcdir}/../include/bfd.h ${srcdir}/../include/opcode/np1.h 
  1132. gould-xdep.o : gould-xdep.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status frame.h \
  1133.   inferior.h symtab.h ${srcdir}/../include/obstack.h breakpoint.h value.h gdbtypes.h expression.h \
  1134.   gdbcore.h ${srcdir}/../include/bfd.h 
  1135. h8300-tdep.o : h8300-tdep.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status frame.h \
  1136.   ${srcdir}/../include/obstack.h symtab.h 
  1137. hp300ux-xdep.o : hp300ux-xdep.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status frame.h \
  1138.   inferior.h symtab.h ${srcdir}/../include/obstack.h breakpoint.h value.h gdbtypes.h expression.h \
  1139.   gdbcore.h ${srcdir}/../include/bfd.h 
  1140. i386-pinsn.o : i386-pinsn.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status gdbcore.h \
  1141.   ${srcdir}/../include/bfd.h ${srcdir}/../include/obstack.h 
  1142. i386-tdep.o : i386-tdep.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status frame.h inferior.h \
  1143.   symtab.h ${srcdir}/../include/obstack.h breakpoint.h value.h gdbtypes.h expression.h \
  1144.   gdbcore.h ${srcdir}/../include/bfd.h 
  1145. i386-xdep.o : i386-xdep.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status frame.h inferior.h \
  1146.   symtab.h ${srcdir}/../include/obstack.h breakpoint.h value.h gdbtypes.h expression.h \
  1147.   language.h gdbcore.h ${srcdir}/../include/bfd.h ieee-float.h target.h 
  1148. i387-tdep.o : i387-tdep.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status frame.h inferior.h \
  1149.   symtab.h ${srcdir}/../include/obstack.h breakpoint.h value.h gdbtypes.h expression.h \
  1150.   language.h gdbcore.h ${srcdir}/../include/bfd.h ieee-float.h 
  1151. i960-pinsn.o : i960-pinsn.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status frame.h \
  1152.   inferior.h symtab.h ${srcdir}/../include/obstack.h breakpoint.h value.h gdbtypes.h expression.h 
  1153. i960-tdep.o : i960-tdep.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status symtab.h \
  1154.   ${srcdir}/../include/obstack.h value.h gdbtypes.h expression.h frame.h signame.h ieee-float.h 
  1155. ieee-float.o : ieee-float.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status ieee-float.h 
  1156. infcmd.o : infcmd.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status symtab.h ${srcdir}/../include/obstack.h \
  1157.   gdbtypes.h frame.h inferior.h breakpoint.h value.h expression.h environ.h gdbcmd.h \
  1158.   command.h gdbcore.h ${srcdir}/../include/bfd.h target.h 
  1159. inflow.o : inflow.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status frame.h inferior.h \
  1160.   symtab.h ${srcdir}/../include/obstack.h breakpoint.h value.h gdbtypes.h expression.h \
  1161.   command.h signals.h terminal.h target.h ${srcdir}/../include/bfd.h 
  1162. infptrace.o : infptrace.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status frame.h inferior.h \
  1163.   symtab.h ${srcdir}/../include/obstack.h breakpoint.h value.h gdbtypes.h expression.h \
  1164.   target.h ${srcdir}/../include/bfd.h gdbcore.h 
  1165. infrun.o : infrun.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status symtab.h ${srcdir}/../include/obstack.h \
  1166.   frame.h inferior.h breakpoint.h value.h gdbtypes.h expression.h ${srcdir}/../include/wait.h \
  1167.   gdbcore.h ${srcdir}/../include/bfd.h signame.h command.h terminal.h target.h 
  1168. inftarg.o : inftarg.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status frame.h inferior.h \
  1169.   symtab.h ${srcdir}/../include/obstack.h breakpoint.h value.h gdbtypes.h expression.h \
  1170.   target.h ${srcdir}/../include/bfd.h ${srcdir}/../include/wait.h gdbcore.h ieee-float.h 
  1171. language.o : language.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status symtab.h ${srcdir}/../include/obstack.h \
  1172.   gdbtypes.h value.h expression.h gdbcmd.h command.h frame.h language.h target.h \
  1173.   ${srcdir}/../include/bfd.h parser-defs.h 
  1174. m2-exp.tab.o : m2-exp.tab.c ${srcdir}/defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status ${srcdir}/symtab.h \
  1175.   ${srcdir}/../include/obstack.h ${srcdir}/gdbtypes.h ${srcdir}/frame.h ${srcdir}/expression.h ${srcdir}/language.h ${srcdir}/value.h \
  1176.   ${srcdir}/parser-defs.h ${srcdir}/../include/bfd.h ${srcdir}/symfile.h ${srcdir}/objfiles.h 
  1177. m68k-pinsn.o : m68k-pinsn.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status symtab.h \
  1178.   ${srcdir}/../include/obstack.h ${srcdir}/../include/opcode/m68k.h gdbcore.h ${srcdir}/../include/bfd.h 
  1179. m68k-tdep.o : m68k-tdep.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status ieee-float.h \
  1180.   frame.h symtab.h ${srcdir}/../include/obstack.h 
  1181. m88k-pinsn.o : m88k-pinsn.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status ${srcdir}/../include/opcode/m88k.h \
  1182.   symtab.h ${srcdir}/../include/obstack.h 
  1183. m88k-tdep.o : m88k-tdep.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status frame.h inferior.h \
  1184.   symtab.h ${srcdir}/../include/obstack.h breakpoint.h value.h gdbtypes.h expression.h \
  1185.   gdbcore.h ${srcdir}/../include/bfd.h /usr/include/setjmp.h 
  1186. m88k-xdep.o : m88k-xdep.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status frame.h inferior.h \
  1187.   symtab.h ${srcdir}/../include/obstack.h breakpoint.h value.h gdbtypes.h expression.h \
  1188.   gdbcore.h ${srcdir}/../include/bfd.h /usr/include/setjmp.h 
  1189. mach386-xdep.o : mach386-xdep.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status frame.h \
  1190.   inferior.h symtab.h ${srcdir}/../include/obstack.h breakpoint.h value.h gdbtypes.h expression.h \
  1191.   signame.h gdbcore.h ${srcdir}/../include/bfd.h 
  1192. main.o : main.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status gdbcmd.h command.h \
  1193.   call-cmds.h symtab.h ${srcdir}/../include/obstack.h inferior.h breakpoint.h frame.h \
  1194.   value.h gdbtypes.h expression.h signals.h target.h ${srcdir}/../include/bfd.h language.h \
  1195.   ${srcdir}/../include/getopt.h ${srcdir}/../readline/readline.h ${srcdir}/../readline/keymaps.h ${srcdir}/../readline/chardefs.h \
  1196.   ${srcdir}/../readline/history.h 
  1197. mem-break.o : mem-break.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status 
  1198. minsyms.o : minsyms.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status symtab.h ${srcdir}/../include/obstack.h \
  1199.   ${srcdir}/../include/bfd.h symfile.h objfiles.h 
  1200. mips-pinsn.o : mips-pinsn.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status symtab.h \
  1201.   ${srcdir}/../include/obstack.h ${srcdir}/../include/opcode/mips.h 
  1202. mips-tdep.o : mips-tdep.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status frame.h inferior.h \
  1203.   symtab.h ${srcdir}/../include/obstack.h breakpoint.h value.h gdbtypes.h expression.h \
  1204.   gdbcmd.h command.h language.h gdbcore.h ${srcdir}/../include/bfd.h symfile.h objfiles.h 
  1205. mips-xdep.o : mips-xdep.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status frame.h inferior.h \
  1206.   symtab.h ${srcdir}/../include/obstack.h breakpoint.h value.h gdbtypes.h expression.h \
  1207.   gdbcore.h ${srcdir}/../include/bfd.h 
  1208. mipsread.o : mipsread.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm-mips.h ${srcdir}/../include/coff/sym.h \
  1209.   ${srcdir}/../include/coff/symconst.h symtab.h ${srcdir}/../include/obstack.h gdbtypes.h gdbcore.h \
  1210.   ${srcdir}/../include/bfd.h symfile.h objfiles.h buildsym.h ${srcdir}/../include/coff/mips.h \
  1211.   ${srcdir}/../bfd/libaout.h ${srcdir}/../include/aout/aout64.h ${srcdir}/../include/aout/stab_gnu.h ${srcdir}/../include/aout/stab.def \
  1212.   ${srcdir}/../include/coff/ecoff-ext.h partial-stab.h 
  1213. news-xdep.o : news-xdep.c 
  1214. Onindy.o : ${srcdir}/nindy-share/Onindy.c ${srcdir}/nindy-share/ttycntl.h ${srcdir}/nindy-share/block_io.h \
  1215.   ${srcdir}/../include/wait.h ${srcdir}/nindy-share/env.h /usr/include/string.h 
  1216. nindy.o : ${srcdir}/nindy-share/nindy.c ${srcdir}/nindy-share/ttycntl.h ${srcdir}/nindy-share/block_io.h ${srcdir}/../include/wait.h \
  1217.   ${srcdir}/nindy-share/env.h /usr/include/string.h 
  1218. ttybreak.o : ${srcdir}/nindy-share/ttybreak.c ${srcdir}/nindy-share/ttycntl.h 
  1219. ttyflush.o : ${srcdir}/nindy-share/ttyflush.c ${srcdir}/nindy-share/ttycntl.h 
  1220. nindy-tdep.o : nindy-tdep.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status symtab.h \
  1221.   ${srcdir}/../include/obstack.h frame.h 
  1222. ns32k-pinsn.o : ns32k-pinsn.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status symtab.h \
  1223.   ${srcdir}/../include/obstack.h ns32k-opcode.h gdbcore.h ${srcdir}/../include/bfd.h 
  1224. objfiles.o : objfiles.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status ${srcdir}/../include/bfd.h \
  1225.   ${srcdir}/../include/obstack.h symtab.h symfile.h objfiles.h 
  1226. parse.o : parse.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status symtab.h ${srcdir}/../include/obstack.h \
  1227.   gdbtypes.h frame.h expression.h value.h command.h language.h parser-defs.h 
  1228. printcmd.o : printcmd.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status frame.h symtab.h \
  1229.   ${srcdir}/../include/obstack.h gdbtypes.h value.h expression.h language.h gdbcore.h \
  1230.   ${srcdir}/../include/bfd.h gdbcmd.h command.h target.h breakpoint.h 
  1231. procfs.o : procfs.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status 
  1232. pyr-pinsn.o : pyr-pinsn.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status symtab.h \
  1233.   ${srcdir}/../include/obstack.h ${srcdir}/../include/opcode/pyr.h gdbcore.h ${srcdir}/../include/bfd.h 
  1234. pyr-tdep.o : pyr-tdep.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status 
  1235. pyr-xdep.o : pyr-xdep.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status frame.h inferior.h \
  1236.   symtab.h ${srcdir}/../include/obstack.h breakpoint.h value.h gdbtypes.h expression.h \
  1237.   gdbcore.h ${srcdir}/../include/bfd.h 
  1238. remote-adapt.o : remote-adapt.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status inferior.h \
  1239.   symtab.h ${srcdir}/../include/obstack.h breakpoint.h frame.h value.h gdbtypes.h expression.h \
  1240.   ${srcdir}/../include/wait.h terminal.h target.h ${srcdir}/../include/bfd.h gdbcore.h 
  1241. remote-eb.o : remote-eb.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm-29k.h inferior.h \
  1242.   symtab.h ${srcdir}/../include/obstack.h breakpoint.h frame.h value.h gdbtypes.h expression.h \
  1243.   ${srcdir}/../include/wait.h terminal.h target.h ${srcdir}/../include/bfd.h gdbcore.h 
  1244. remote-hms.o : remote-hms.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status inferior.h \
  1245.   symtab.h ${srcdir}/../include/obstack.h breakpoint.h frame.h value.h gdbtypes.h expression.h \
  1246.   ${srcdir}/../include/wait.h terminal.h target.h ${srcdir}/../include/bfd.h gdbcore.h 
  1247. remote-mm.o : remote-mm.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status inferior.h \
  1248.   symtab.h ${srcdir}/../include/obstack.h breakpoint.h frame.h value.h gdbtypes.h expression.h \
  1249.   ${srcdir}/../include/wait.h terminal.h minimon.h target.h ${srcdir}/../include/bfd.h 
  1250. remote-nindy.o : remote-nindy.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status frame.h \
  1251.   inferior.h symtab.h ${srcdir}/../include/obstack.h breakpoint.h value.h gdbtypes.h expression.h \
  1252.   target.h ${srcdir}/../include/bfd.h gdbcore.h command.h ieee-float.h ${srcdir}/../include/wait.h \
  1253.   ${srcdir}/nindy-share/ttycntl.h ${srcdir}/nindy-share/demux.h ${srcdir}/nindy-share/env.h ${srcdir}/nindy-share/stop.h 
  1254. remote-vx.o : remote-vx.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status frame.h inferior.h \
  1255.   symtab.h ${srcdir}/../include/obstack.h breakpoint.h value.h gdbtypes.h expression.h \
  1256.   ${srcdir}/../include/wait.h target.h ${srcdir}/../include/bfd.h gdbcore.h command.h symfile.h \
  1257.   ${srcdir}/vx-share/xdr_ptrace.h ${srcdir}/vx-share/xdr_regs.h ${srcdir}/vx-share/reg.h ${srcdir}/vx-share/xdr_ld.h \
  1258.   ${srcdir}/vx-share/xdr_rdb.h ${srcdir}/vx-share/dbgRpcLib.h 
  1259. remote.o : remote.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status frame.h inferior.h \
  1260.   symtab.h ${srcdir}/../include/obstack.h breakpoint.h value.h gdbtypes.h expression.h \
  1261.   target.h ${srcdir}/../include/bfd.h ${srcdir}/../include/wait.h terminal.h 
  1262. rs6000-pinsn.o : rs6000-pinsn.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status ${srcdir}/../include/opcode/rs6k.h 
  1263. rs6000-tdep.o : rs6000-tdep.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status frame.h \
  1264.   inferior.h symtab.h ${srcdir}/../include/obstack.h breakpoint.h value.h gdbtypes.h expression.h \
  1265.   target.h ${srcdir}/../include/bfd.h 
  1266. rs6000-xdep.o : rs6000-xdep.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status frame.h \
  1267.   inferior.h symtab.h ${srcdir}/../include/obstack.h breakpoint.h value.h gdbtypes.h expression.h \
  1268.   target.h ${srcdir}/../include/bfd.h 
  1269. signame.o : signame.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status signame.h 
  1270. solib.o : solib.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status symtab.h ${srcdir}/../include/obstack.h \
  1271.   ${srcdir}/../include/bfd.h symfile.h objfiles.h gdbcore.h command.h target.h frame.h \
  1272.   regex.h inferior.h breakpoint.h value.h gdbtypes.h expression.h 
  1273. source.o : source.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status symtab.h ${srcdir}/../include/obstack.h \
  1274.   expression.h language.h command.h gdbcmd.h frame.h gdbcore.h ${srcdir}/../include/bfd.h \
  1275.   regex.h symfile.h objfiles.h 
  1276. sparc-pinsn.o : sparc-pinsn.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status symtab.h \
  1277.   ${srcdir}/../include/obstack.h ${srcdir}/../include/opcode/sparc.h gdbcore.h ${srcdir}/../include/bfd.h \
  1278.   /usr/include/string.h target.h 
  1279. sparc-tdep.o : sparc-tdep.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status frame.h \
  1280.   inferior.h symtab.h ${srcdir}/../include/obstack.h breakpoint.h value.h gdbtypes.h expression.h \
  1281.   signame.h target.h ${srcdir}/../include/bfd.h ieee-float.h gdbcore.h 
  1282. sparc-xdep.o : sparc-xdep.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm-sparc.h inferior.h \
  1283.   symtab.h ${srcdir}/../include/obstack.h breakpoint.h frame.h value.h gdbtypes.h expression.h \
  1284.   target.h ${srcdir}/../include/bfd.h gdbcore.h 
  1285. stack.o : stack.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status value.h symtab.h \
  1286.   ${srcdir}/../include/obstack.h gdbtypes.h expression.h language.h frame.h gdbcmd.h command.h \
  1287.   gdbcore.h ${srcdir}/../include/bfd.h target.h breakpoint.h 
  1288. sun3-xdep.o : sun3-xdep.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status inferior.h \
  1289.   symtab.h ${srcdir}/../include/obstack.h breakpoint.h frame.h value.h gdbtypes.h expression.h \
  1290.   gdbcore.h ${srcdir}/../include/bfd.h 
  1291. sun386-xdep.o : sun386-xdep.c 
  1292. symfile.o : symfile.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status symtab.h ${srcdir}/../include/obstack.h \
  1293.   gdbtypes.h gdbcore.h ${srcdir}/../include/bfd.h frame.h target.h value.h expression.h \
  1294.   symfile.h objfiles.h gdbcmd.h command.h breakpoint.h 
  1295. symm-tdep.o : symm-tdep.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status frame.h inferior.h \
  1296.   symtab.h ${srcdir}/../include/obstack.h breakpoint.h value.h gdbtypes.h expression.h \
  1297.   gdbcore.h ${srcdir}/../include/bfd.h 
  1298. symm-xdep.o : symm-xdep.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status frame.h inferior.h \
  1299.   symtab.h ${srcdir}/../include/obstack.h breakpoint.h value.h gdbtypes.h expression.h \
  1300.   gdbcore.h ${srcdir}/../include/bfd.h 
  1301. symmisc.o : symmisc.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status symtab.h ${srcdir}/../include/obstack.h \
  1302.   gdbtypes.h ${srcdir}/../include/bfd.h symfile.h objfiles.h breakpoint.h frame.h value.h \
  1303.   expression.h command.h 
  1304. symtab.o : symtab.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status symtab.h ${srcdir}/../include/obstack.h \
  1305.   gdbtypes.h gdbcore.h ${srcdir}/../include/bfd.h frame.h target.h value.h expression.h \
  1306.   symfile.h objfiles.h gdbcmd.h command.h call-cmds.h regex.h language.h 
  1307. tahoe-pinsn.o : tahoe-pinsn.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status symtab.h \
  1308.   ${srcdir}/../include/obstack.h ${srcdir}/../include/opcode/tahoe.h 
  1309. target.o : target.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status target.h ${srcdir}/../include/bfd.h \
  1310.   ${srcdir}/../include/obstack.h gdbcmd.h command.h symtab.h inferior.h breakpoint.h frame.h \
  1311.   value.h gdbtypes.h expression.h symfile.h objfiles.h 
  1312. ultra3-xdep.o : ultra3-xdep.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status frame.h \
  1313.   inferior.h symtab.h ${srcdir}/../include/obstack.h breakpoint.h value.h gdbtypes.h expression.h \
  1314.   gdbcore.h ${srcdir}/../include/bfd.h 
  1315. umax-xdep.o : umax-xdep.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status frame.h inferior.h \
  1316.   symtab.h ${srcdir}/../include/obstack.h breakpoint.h value.h gdbtypes.h expression.h \
  1317.   gdbcore.h ${srcdir}/../include/bfd.h 
  1318. utils.o : utils.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status signals.h gdbcmd.h \
  1319.   command.h terminal.h ${srcdir}/../include/bfd.h ${srcdir}/../include/obstack.h target.h 
  1320. valarith.o : valarith.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status value.h symtab.h \
  1321.   ${srcdir}/../include/obstack.h gdbtypes.h expression.h target.h ${srcdir}/../include/bfd.h 
  1322. valops.o : valops.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status symtab.h ${srcdir}/../include/obstack.h \
  1323.   gdbtypes.h value.h expression.h frame.h inferior.h breakpoint.h gdbcore.h ${srcdir}/../include/bfd.h \
  1324.   target.h 
  1325. valprint.o : valprint.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status symtab.h ${srcdir}/../include/obstack.h \
  1326.   gdbtypes.h value.h expression.h gdbcore.h ${srcdir}/../include/bfd.h gdbcmd.h command.h \
  1327.   target.h language.h 
  1328. values.o : values.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status symtab.h ${srcdir}/../include/obstack.h \
  1329.   gdbtypes.h value.h expression.h gdbcore.h ${srcdir}/../include/bfd.h frame.h command.h \
  1330.   gdbcmd.h target.h 
  1331. vax-pinsn.o : vax-pinsn.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status symtab.h \
  1332.   ${srcdir}/../include/obstack.h ${srcdir}/../include/opcode/vax.h 
  1333. xdr_ld.o : ${srcdir}/vx-share/xdr_ld.c ${srcdir}/vx-share/vxWorks.h ${srcdir}/vx-share/vxTypes.h /usr/include/rpc/rpc.h \
  1334.   ${srcdir}/vx-share/xdr_ld.h 
  1335. xdr_ptrace.o : ${srcdir}/vx-share/xdr_ptrace.c 
  1336. xdr_rdb.o : ${srcdir}/vx-share/xdr_rdb.c ${srcdir}/vx-share/vxWorks.h ${srcdir}/vx-share/vxTypes.h ${srcdir}/vx-share/xdr_rdb.h 
  1337. xdr_regs.o : ${srcdir}/vx-share/xdr_regs.c 
  1338. xcoffexec.o : xcoffexec.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status frame.h inferior.h \
  1339.   symtab.h ${srcdir}/../include/obstack.h breakpoint.h value.h gdbtypes.h expression.h \
  1340.   target.h ${srcdir}/../include/bfd.h gdbcmd.h command.h gdbcore.h symfile.h objfiles.h \
  1341.   ${srcdir}/../bfd/libbfd.h xcoffsolib.h 
  1342. xcoffread.o : xcoffread.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status ${srcdir}/../include/bfd.h \
  1343.   ${srcdir}/../include/obstack.h 
  1344. xcoffsolib.o : xcoffsolib.c defs.h ${srcdir}/../include/ansidecl.h xm.h config.status tm.h config.status ${srcdir}/../include/bfd.h \
  1345.   ${srcdir}/../include/obstack.h xcoffsolib.h 
  1346.